
/* About Us CSS */
.about-us {
  padding: 40px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.about-us .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  gap: 40px;
}

.about-content {
  flex: 1 1 500px;
}

.about-content h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  max-height: 500px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

